home *** CD-ROM | disk | FTP | other *** search
- Path: news1.radix.net!news
- From: jfw@radix.net (Jim Ward)
- Newsgroups: comp.lang.c
- Subject: Four * Code
- Date: Fri, 22 Mar 1996 02:52:28 GMT
- Organization: RadixNet Internet Services
- Message-ID: <4it4f6$oe4@news1.radix.net>
- NNTP-Posting-Host: dialin54.annex3.radix.net
- X-Newsreader: Forte Free Agent 1.0.82
-
- When I first started in C, I ran into single *s: char*
- Then double *s: char** argv
- and yesterday I ran into a triple *: char*** nmptr;
- nmptr is an argument for the UNIX function scandir(), and is to be
- filled with the address of an array of pointers to filenames in a
- directory. Has anyone ever run into a quadruple * or beyond?
-
-